component.list-group

list-group-1

<ul class="list-group list-group-1 margin-none">
	<li class="list-group-item active"><a href="#"><i class="fa fa-user"></i> Profile</a></li>
	<li class="list-group-item"><a href="#"><span class="badge pull-right badge-primary hidden-md">13</span><i class="fa fa-book"></i> Timeline</a></li>
	<li class="list-group-item"><a href="#"><span class="badge pull-right badge-primary hidden-md">2</span><i class="fa fa-envelope"></i> Messages</a></li>
	<li class="list-group-item"><a href="#"><i class="fa fa-cogs"></i> Settings</a></li>
	<li class="list-group-item border-bottom-none"><a href="#"><i class="fa fa-lock"></i> Logout</a></li>
</ul>

Code

@import "assets/components/modules/admin/widgets/lists/list-group/assets/custom/less/list-group.less";

Usage

  1. Create a new LESS file (eg. styles.less)
  2. Copy & paste the above imports in the LESS file.
  3. Place the file in your project's document root.
  4. Load the LESS file into the <head> section of your HTML document, before any JavaScript files:

    <link type="stylesheet/less" href="styles.less" />

    NOTE  All the styles from the CORE package also need to be imported in this file, before the component imports.

  5. If you'd like to include other components on the same page, don't create multiple LESS files, but add all the imports in one file. You can create a LESS file for each page with just the resources used for that specific page, or you could create and use a single LESS file for the entire project.
  6. In production, compile the LESS file and use the resulting minified CSS file in the HTML document.

list-group

<ul class="list-group list-group-1 margin-none">
	<li class="list-group-item active"><a href="#"><span class="badge badge-primary pull-right hidden-md">13</span><i class="fa fa-user"></i> For Rent</a></li>
	<li class="list-group-item"><a href="#"><span class="badge pull-right badge-primary hidden-md">13</span><i class="fa fa-book"></i> For Sale</a></li>
	<li class="list-group-item"><a href="#"><span class="badge pull-right badge-primary hidden-md">2</span><i class="fa fa-envelope"></i> Comercial</a></li>
	<li class="list-group-item"><a href="#"><i class="fa fa-cogs"></i> Luxury</a></li>
	<li class="list-group-item "><a href="#"><i class="fa fa-lock"></i>Contact us</a></li>
</ul>


Code

@import "assets/components/modules/admin/widgets/lists/list-group/assets/custom/less/list-group.less";
@import "assets/components/core/less/labels.less";

Usage

  1. Create a new LESS file (eg. styles.less)
  2. Copy & paste the above imports in the LESS file.
  3. Place the file in your project's document root.
  4. Load the LESS file into the <head> section of your HTML document, before any JavaScript files:

    <link type="stylesheet/less" href="styles.less" />

    NOTE  All the styles from the CORE package also need to be imported in this file, before the component imports.

  5. If you'd like to include other components on the same page, don't create multiple LESS files, but add all the imports in one file. You can create a LESS file for each page with just the resources used for that specific page, or you could create and use a single LESS file for the entire project.
  6. In production, compile the LESS file and use the resulting minified CSS file in the HTML document.